home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
misc
/
mirrorman_1_10b1.lha
/
MirrorManager-1.10b1
/
rexx
/
SetConfigureDefaults
< prev
next >
Wrap
Text File
|
1994-06-24
|
800b
|
18 lines
; This Shell script sets the default values in the Configure Installer script.
; Commodore's Installer compiles it's script before it executes it
; and no further Installer LISP code can be evaluated at run-time.
; This is why the Configure Installer script cannot read the current default values
; on it's own before it begins asking you for the pathnames.
echo "Reading current default values ..."
rx Configure.rexx READ SCRIPT MirrorManager.rexx > T:SetConfigureDefaultsTemp.<$$>
echo "Setting default values in Configure script ..."
rx Configure.rexx SCRIPT Configure WITH T:SetConfigureDefaultsTemp.<$$> DELIMITER ";@" TERMINATOR ";end"
delete quiet T:SetConfigureDefaultsTemp.<$$>
;run >nil: installer SCRIPT Configure APPNAME MirrorManager.rexx MINUSER EXPERT DEFUSER EXPERT
echo "done."